[Azure Load Testing] Updating python SDK to new data plane api version 2025-11-01-preview#44665
Merged
mitsha-microsoft merged 23 commits intoAzure:mainfrom Mar 5, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Azure Load Testing Python SDK to the new data plane API version 2025-11-01-preview. The SDK is generated using TypeSpec from an updated API specification.
Changes:
- Updated API version from an older version to
2025-11-01-preview - Added support for new features including triggers, notification rules, test run insights, and operation status tracking
- Updated build configuration from setup.py to pyproject.toml (PEP 517/518 compliance)
- Added trailing commas and formatting improvements across test files
Reviewed changes
Copilot reviewed 87 out of 90 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tsp-location.yaml | Updated TypeSpec directory path and commit hash for API generation |
| setup.py | Deleted setup.py as build config moved to pyproject.toml |
| pyproject.toml | Added modern Python packaging configuration with build-system metadata |
| tests/*.py | Added trailing commas, whitespace cleanup, and formatting fixes |
| samples/*.py | Added pylint disable comments for line-too-long checks |
| generated_tests/*.py | New auto-generated test files for API coverage |
| generated_samples/*.py | New auto-generated sample files for various operations |
| models/_models.py | Added new model classes for triggers, notifications, recurrence, insights, and operations |
| models/_enums.py | Added new enum types for frequencies, trigger states, notification events, and operation kinds |
| models/init.py | Exported new models and enums |
| _operations/_patch.py | Updated import names for generated operation mixins |
| _metadata.json | New file storing API version metadata |
API Change CheckAPIView identified API level changes in this PR and created the following API reviews |
…manshu49/azure-sdk-for-python into Users/hbisht/sdk-gen-20250301
…manshu49/azure-sdk-for-python into Users/hbisht/sdk-gen-20250301
mitsha-microsoft
requested changes
Mar 2, 2026
sdk/loadtesting/azure-developer-loadtesting/azure/developer/loadtesting/_operations/_patch.py
Outdated
Show resolved
Hide resolved
...oadtesting/azure-developer-loadtesting/azure/developer/loadtesting/aio/_operations/_patch.py
Outdated
Show resolved
Hide resolved
sdk/loadtesting/azure-developer-loadtesting/azure/developer/loadtesting/_version.py
Outdated
Show resolved
Hide resolved
...dtesting/azure-developer-loadtesting/generated_samples/create_or_update_notification_rule.py
Outdated
Show resolved
Hide resolved
sdk/loadtesting/azure-developer-loadtesting/generated_tests/conftest.py
Outdated
Show resolved
Hide resolved
sdk/loadtesting/azure-developer-loadtesting/tests/test_load_test_administration_ops.py
Show resolved
Hide resolved
sdk/loadtesting/azure-developer-loadtesting/tests/test_async_load_test_administration_ops.py
Show resolved
Hide resolved
sdk/loadtesting/azure-developer-loadtesting/tests/test_async_load_test_administration_ops.py
Outdated
Show resolved
Hide resolved
mitsha-microsoft
approved these changes
Mar 3, 2026
…manshu49/azure-sdk-for-python into Users/hbisht/sdk-gen-20250301
mitsha-microsoft
approved these changes
Mar 5, 2026
mitsha-microsoft
approved these changes
Mar 5, 2026
singankit
pushed a commit
that referenced
this pull request
Mar 16, 2026
…n 2025-11-01-preview (#44665) * Updating sdk for 2025-11-01-preview api version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Generated new sdk for data plane api version 2025-11-01-preview
SDK is generated with the help of typespec
API spec change PR - Azure/azure-rest-api-specs#39372
All SDK Contribution checklist:
General Guidelines and Best Practices
Testing Guidelines